home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2002 April
/
Disc 2
/
PCUSER0402D2.iso
/
software
/
utils
/
files
/
wincron.exe
/
data1.cab
/
Sample_Scripts
/
Include
/
stdarg.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
2001-10-20
|
348 b
|
24 lines
#ifndef _STDARGH
#define _STDARGH
#pragma push_safeptr
typedef char *va_list;
int _get_AR_t_size(void);
va_list _StArT_Va(void *);
int _AR_t_SiZe;
#define va_arg(x,y) (*(y*)(x -= _AR_t_SiZe))
#define va_start(x,y) (x)=_StArT_Va(&(y))
#define va_end(x)
_AR_t_SiZe = _get_AR_t_size();
#pragma pop_ptr
#endif